Object[].Equals (gb)
Function Equals ( Array As Object[] ) As Boolean
Depuis 3.20
Return if the array has the same contents as
Array.
The arrays must have the same dimensions and the same number of elements.
Two objects are equal either if:
-
They are the same object references.
-
They are two equal arrays.
-
They are two equal collections.
Do not forget that there is an automatic conversion if Array has not the same datatype.
The comparison is done recursively, and may enter an infinite recursion if there are cyclic references.